home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / pcresrc / pcr8808.arc / S.BAT < prev    next >
DOS Batch File  |  1988-07-13  |  533b  |  26 lines

  1. echo off
  2. find "%1" %FILE% > results
  3. :GET_NEXT
  4. shift
  5. shift
  6. if (%0)==(or) goto OR_SEARCH
  7. if (%0)==(and) goto AND_SEARCH
  8. if (%0)==(not) goto NOT_SEARCH
  9. if not (%0)==() echo ***The parameter "%0" was not properly entered.***
  10. type results | find /v "---------- " | more
  11. goto END
  12. :OR_SEARCH
  13. find "%1" %FILE% > temp
  14. copy results+temp results > nul
  15. goto GET_NEXT
  16. :AND_SEARCH
  17. find "%1" results > temp
  18. goto CLEAN_UP
  19. :NOT_SEARCH
  20. find /v "%1" results > temp
  21. :CLEAN_UP
  22. del results
  23. rename temp results
  24. goto GET_NEXT
  25. :END
  26.